diff options
author | Nicholas Piper <nicholas@users.sourceforge.net> | 2006-05-19 22:10:58 +0000 |
---|---|---|
committer | Nicholas Piper <nicholas@users.sourceforge.net> | 2006-05-19 22:10:58 +0000 |
commit | b93092c58be792aaf889128dc0fec400fdcce3f6 (patch) | |
tree | 7b711845242974dcdefb1b4d5458bcbd8ece3bfa | |
parent | b3f60d9521e6b5717600f0b787ed72185cd6fa03 (diff) | |
download | libgpod-b93092c58be792aaf889128dc0fec400fdcce3f6.tar.gz libgpod-b93092c58be792aaf889128dc0fec400fdcce3f6.tar.xz libgpod-b93092c58be792aaf889128dc0fec400fdcce3f6.zip |
Assume local if localdb is specified
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1270 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r-- | bindings/python/ipod.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/ipod.py b/bindings/python/ipod.py index 7a93a3d..4776d2a 100644 --- a/bindings/python/ipod.py +++ b/bindings/python/ipod.py @@ -17,7 +17,7 @@ class TrackException(RuntimeError): class Database: def __init__(self, mountpoint="/mnt/ipod", local=False, localdb=None): - if local: + if local or localdb: if localdb: self._itdb_file = localdb else: |