We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ffdd96 commit f23ad2bCopy full SHA for f23ad2b
README.md
@@ -201,19 +201,15 @@ with specfile.patches() as patches:
201
del patches[2]
202
# inserting a patch with a specific number
203
patches.insert_numbered(999, 'final.patch')
204
-
205
-# fetching non-local sources (including patches)
206
-specfile.download_remote_sources()
207
208
-# same thing, but trying to fetch from lookaside cache first
209
-specfile.download_remote_sources(lookaside=True)
210
```
211
212
#### Other attributes
213
214
```python
215
-print(specfile.url)
216
-specfile.summary = '...'
+print(specfile.name)
+print(specfile.license)
+print(specfile.summary)
+specfile.url = 'https://example.com'
217
218
219
## Caveats
0 commit comments